home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 16
/
Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso
/
Aminet
/
gfx
/
misc
/
Collector_20.lha
/
Install-Collector
< prev
next >
Wrap
Text File
|
1996-10-08
|
1KB
|
61 lines
; This is test of many of the features of the Installer
; Prints out debugging info if run from CLI
(if (= @language "français")
(
(set #where_install "Où voulez-vous installer\nle répertoire 'Collector2.0' ?")
(set #copying "Copie de Collector vers %s...")
(set #copying_lib "Copie des bibliothèques...")
)
; ---- English ----
(
(set #where_install "Where do you want to put\nthe 'Collector2.0' directory ?")
(set #copying "Copying Collector to %s...")
(set #copying_lib "Copying libraries...")
)
)
(set @default-dest
(askdir
(prompt #where_install)
(help @askdir-help)
(default "SYS:")
)
)
(set @default-dest (tackon @default-dest "Collector2.0"))
(makedir @default-dest
(infos)
)
(copyfiles
(prompt #copying @default-dest)
(help @copyfiles-help)
(source "Collector2.0")
(dest @default-dest)
(infos)
(all)
)
(copylib
(prompt #copying_lib)
(help @copylib-help)
(source "Libs/Reqtools.Library")
(dest "LIBS:")
(confirm)
)
(copylib
(prompt #copying_lib)
(help @copylib-help)
(source "Libs/MPImage.Library")
(dest "LIBS:")
(confirm)
)